home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / kudzu / pcmcia.h < prev    next >
C/C++ Source or Header  |  2005-12-04  |  1KB  |  47 lines

  1. /* Copyright 2003 Red Hat, Inc.
  2.  *
  3.  * This software may be freely redistributed under the terms of the GNU
  4.  * public license.
  5.  *
  6.  * You should have received a copy of the GNU General Public License
  7.  * along with this program; if not, write to the Free Software
  8.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  9.  *
  10.  */
  11.  
  12. #ifndef _KUDZU_PCMCIA_H_
  13. #define _KUDZU_PCMCIA_H_
  14.  
  15. #include "device.h"
  16.  
  17.  
  18. struct pcmciaDevice {
  19.     /* common fields */
  20.     struct device *next;    /* next device in list */
  21.     int index;
  22.     enum deviceClass type;    /* type */
  23.     enum deviceBus bus;        /* bus it's attached to */
  24.     char * device;        /* device file associated with it */
  25.     char * driver;        /* driver to load, if any */
  26.     char * desc;        /* a description */
  27.     int detached;
  28.     void * classprivate;
  29.     /* pcmcia-specific fields */
  30.     struct pcmciaDevice  *(*newDevice) (struct pcmciaDevice *dev);
  31.     void (*freeDevice) (struct pcmciaDevice *dev);
  32.     void (*writeDevice) (FILE *file, struct pcmciaDevice *dev);
  33.     int (*compareDevice) (struct pcmciaDevice *dev1, struct pcmciaDevice *dev2);
  34.     unsigned int vendorId;    /* vendor id */
  35.     unsigned int deviceId;    /* device id */
  36.     unsigned int function; /* logical function # */
  37.     unsigned int slot; /* slot the card is in */
  38.     unsigned int port; /* i/o port */
  39. };
  40.  
  41. struct pcmciaDevice *pcmciaNewDevice(struct pcmciaDevice *dev);
  42. struct device *pcmciaProbe(enum deviceClass probeClass, int probeFlags,
  43.             struct device *devlist);
  44. int pcmciaReadDrivers(char *filename);
  45. void pcmciaFreeDrivers(void);
  46. #endif
  47.